home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form ExpName
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- Caption = "Export"
- ClientHeight = 1335
- ClientLeft = 2745
- ClientTop = 3660
- ClientWidth = 4620
- ControlBox = 0 'False
- Height = 1740
- Left = 2685
- LinkTopic = "Form1"
- ScaleHeight = 1335
- ScaleWidth = 4620
- Top = 3315
- Width = 4740
- Begin CommandButton cCancelBtn
- Cancel = -1 'True
- Caption = "Cancel"
- Height = 375
- Left = 3480
- TabIndex = 4
- Top = 600
- Width = 1095
- End
- Begin CommandButton cOKBtn
- Caption = "OK"
- Default = -1 'True
- Height = 375
- Left = 3480
- TabIndex = 3
- Top = 120
- Width = 1095
- End
- Begin TextBox cTable
- Height = 285
- Left = 160
- TabIndex = 1
- Tag = "OLS"
- Top = 480
- Width = 2895
- End
- Begin Label Label2
- BackColor = &H00C0C0C0&
- Height = 255
- Left = 160
- TabIndex = 2
- Top = 840
- Width = 2895
- End
- Begin Label Label1
- BackColor = &H00C0C0C0&
- Height = 255
- Left = 160
- TabIndex = 0
- Top = 120
- Width = 2895
- End
- Sub cCancelBtn_Click ()
- gExpTable = NUL_STR
- Unload Me
- End Sub
- Sub cOKBtn_Click ()
- gExpTable = cTable
- Unload Me
- End Sub
- Sub Form_Paint ()
- Outlines Me
- End Sub
-